@charset "utf-8";
/* CSS Document */
/* main column*/
body {color: white; background-color: black; border-style:double; border-color: red}
/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: black;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: underline; text-decoration-color: red;
	font-size: 25px;
	
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color:white;
  color: black;
}